home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr49
/
120_01.zip
/
NOBOOT.C
< prev
next >
Wrap
Text File
|
1993-06-01
|
3KB
|
104 lines
/* HEADER: CUG120.22;
TITLE: NOBOOT;
DESCRIPTION: "Modifies a BDS C program .COM file so that the CCP is preserved
and a warm boot is not done on termination.";
KEYWORDS: warm boot,CCP;
SYSTEM: CP/M;
FILENAME: NOBOOT.C;
WARNINGS:"The library function topofmem returns a value which is 2100H bytes too large
(i.e. the value for the original, unmodified program.)";
CRC: 75FF;
AUTHORS: Leor Zolman;
COMPILERS: BDS;
*/
/*
Given the name of a C-generated COM file (linked with the standard
distribution version of the C.CCC run-time package), this program
changes that COM file so that it does not perform a warm-boot after
its execution is complete, but instead preserves the CCP (Console
Command Processor) that is in memory when execution begins and
returns to the CCP directly following execution.
Note that the "topofmem" library function always returns the address
of the base of the BDOS, even when the non-booting mechanism is in
effect. Once NOBOOT has been run on a program, the actual top of
available user memory is 2100 (decimal) bytes less than the value
returned by "topofmem()" for that program.
*/
#include "bdscio.h"
main(argc,argv)
char **argv;
{
int fd;
int i;
char c;
char nambuf[30];
char workbuf[0x500];
if (argc != 2) {
puts("Usage: noboot <C-generated COM file name>\n");
exit();
}
for (i=0; (c = argv[1][i]) && c != '.'; i++)
nambuf[i] = c;
nambuf[i] = '\0';
strcat(nambuf,".COM");
if ((fd = open(nambuf,2)) == ERROR) {
puts("Can't open: ");
puts(nambuf);
exit();
}
i = read(fd,workbuf+0x100,8);
if (i != 8) puts("Couldn't read in at least 8 sectors...\n");
workbuf[0x100] = 0x21;
workbuf[0x101] = 0x00;
workbuf[0x102] = 0x00;
workbuf[0x103] = 0x39;
workbuf[0x104] = 0x22;
workbuf[0x105] = 0x79;
workbuf[0x106] = 0x05;
workbuf[0x107] = 0xcd;
workbuf[0x108] = 0x34;
workbuf[0x109] = 0x01;
workbuf[0x10a] = 0xf9;
workbuf[0x12f] = 0x2a;
workbuf[0x130] = 0x79;
workbuf[0x131] = 0x05;
workbuf[0x132] = 0xf9;
workbuf[0x133] = 0xc9;
workbuf[0x134] = 0x2a;
workbuf[0x135] = 0x06;
workbuf[0x136] = 0x00;
workbuf[0x137] = 0x11;
workbuf[0x138] = 0xcc;
workbuf[0x139] = 0xf7;
workbuf[0x13a] = 0x19;
workbuf[0x13b] = 0xc9;
workbuf[0x13c] = 0x00;
workbuf[0x13d] = 0x00;
workbuf[0x13e] = 0x00;
workbuf[0x443] = 0xc3;
workbuf[0x444] = 0x2f;
workbuf[0x445] = 0x01;
seek(fd,0,0);
if (write(fd,workbuf+0x100,8) != 8) {
puts("Write error.\n");
exit();
}
if (close(fd) == ERROR) {
puts("Close error\n");
}
}
his program
changes that COM file so that it does no